home *** CD-ROM | disk | FTP | other *** search
/ SGI Developer Toolbox 6.1 / SGI Developer Toolbox 6.1 - Disc 4.iso / public / GNU / emacs.inst / emacs19.idb / usr / share / src / gnu / sgi.patches.z / sgi.patches
Encoding:
Text File  |  1994-08-02  |  1.2 KB  |  49 lines

  1. *** config.status-orig    Mon Dec 20 13:09:30 1993
  2. --- config.status    Mon Dec 20 13:09:51 1993
  3. ***************
  4. *** 46,52 ****
  5.   libsrc_libs='-lmld '
  6.   LD_SWITCH_X_SITE=''
  7.   C_SWITCH_X_SITE=''
  8. ! CFLAGS='-g '
  9.   LIBS=' -lX11 -lmld -lm'
  10.   prefix='/usr/gnu'
  11.   exec_prefix='${prefix}'
  12. --- 46,52 ----
  13.   libsrc_libs='-lmld '
  14.   LD_SWITCH_X_SITE=''
  15.   C_SWITCH_X_SITE=''
  16. ! CFLAGS='-O2 -g3'
  17.   LIBS=' -lX11 -lmld -lm'
  18.   prefix='/usr/gnu'
  19.   exec_prefix='${prefix}'
  20. *** src/config.h.in.orig    Mon Dec 20 13:07:53 1993
  21. --- src/config.h.in    Thu Dec  9 08:22:11 1993
  22. ***************
  23. *** 244,247 ****
  24. --- 244,250 ----
  25.   extern char *getenv ();
  26.   #endif
  27.   
  28. + /* from FAQ -- the bigger than 8MB buffer fix */
  29. + #define VALBITS 26
  30. + #define GCTYPEBITS 5
  31.   #endif /* EMACS_CONFIG_H */
  32. *** lib-src/wakeup.c.~1~    Sun Sep 12 01:09:18 1993
  33. --- lib-src/wakeup.c    Mon Dec 20 13:16:16 1993
  34. ***************
  35. *** 29,34 ****
  36. --- 29,40 ----
  37.     if (argc > 1)
  38.       period = atoi (argv[1]);
  39.   
  40. + #ifdef __sgi
  41. +   /* Irix doesn't use SIGALRM to impliment sleep(),
  42. +      so wakeup exits when it gets one. Ignore it */
  43. +   signal(SIGALRM, SIG_IGN);
  44. + #endif /* __sgi */
  45.     while (1)
  46.       {
  47.         /* Make sure wakeup stops when Emacs goes away.  */
  48.